home *** CD-ROM | disk | FTP | other *** search
- //---------------------------------------------------------------------------
- #ifndef qm_pgmH
- #define qm_pgmH
- //---------------------------------------------------------------------------
- #include <vcl\Classes.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\Menus.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TMainMenu *MainMenu;
- TMenuItem *mConnect;
- TMenuItem *mSend;
- TMenuItem *mClose;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TLabel *Label5;
-
- TEdit *eServer;
- TEdit *eTo;
- TEdit *eFrom;
- TEdit *eSubject;
- TMenuItem *mExit;
- TMemo *eMessage;
- TEdit *eResult;
- TLabel *lResult;
- void __fastcall mExitClick(TObject *Sender);
- void __fastcall mConnectClick(TObject *Sender);
- void __fastcall mSendClick(TObject *Sender);
- void __fastcall mCloseClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif
-